home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / repair / librepair.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  2KB  |  59 lines

  1. /* Copyright 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
  2.    reiser4progs/COPYING.
  3.    
  4.    repair/librepair.h -- the central recovery include file. */
  5.  
  6. #ifndef LIBREPAIR_H
  7. #define LIBREPAIR_H
  8.  
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12.     
  13. #include <reiser4/libreiser4.h>
  14. #include <repair/repair.h>
  15. #include <repair/plugin.h>
  16. #include <repair/filesystem.h>
  17. #include <repair/status.h>
  18. #include <repair/backup.h>
  19. #include <repair/tree.h>
  20. #include <repair/format.h>
  21. #include <repair/alloc.h>
  22. #include <repair/master.h>
  23. #include <repair/journal.h>
  24. #include <repair/node.h>
  25. #include <repair/place.h>
  26. #include <repair/item.h>
  27. #include <repair/object.h>
  28. #include <repair/key.h>
  29. #include <repair/oid.h>
  30.  
  31. /*  -------------------------------------------------
  32.     | Common scheem for communication with users.   |
  33.     |-----------------------------------------------|
  34.     |  stream  | default | with log | with 'no-log' |
  35.     |----------|---------|----------|---------------|
  36.     | warn     | stderr  | stderr   |  -            |
  37.     | info     | stderr  | log      |  -            |
  38.     | error    | stderr  | log      |  -            |
  39.     | fatal    | stderr  | stderr   | stderr        |
  40.     | bug      | stderr  | stderr   | stderr        |
  41.     -------------------------------------------------
  42.     
  43.     info   - Information about what is going on. 
  44.     warn   - warnings to users about what is going on, which should be viewed 
  45.              on-line.
  46.     error  - Problems. 
  47.     fatal  - Fatal problems which are supposed to be viewed on-line. 
  48.  
  49.     Modifiers: Auto (choose the default answer for all questions) and Verbose 
  50.     (provide some extra information) and Quiet (quiet progress and provide only
  51.     fatal and bug infotmation to stderr; does not affect the log content though
  52.     if log presents). */
  53.  
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57.  
  58. #endif
  59.